home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / misc / esptest.arj / ESPFONT.PAS < prev    next >
Pascal/Delphi Source File  |  1992-03-02  |  600b  |  28 lines

  1. {*************************************************}
  2. {**   Copyright 1991  Phil Mosier               **}
  3. {*************************************************}
  4.  
  5. Unit ESPFONT;
  6.  
  7. {*************************************************}
  8. {*  Unit to accompany ESPTEST.PAS.  This unit   **}
  9. {*  links the CHR font file into a TPU.         **}
  10. {*************************************************}
  11.  
  12. Interface
  13.  
  14. Procedure TRIPLEXFONTPROC;
  15. Procedure SMALLFONTPROC;
  16.  
  17. Implementation
  18.  
  19. Procedure TRIPLEXFONTPROC; External;
  20. {$L TRIP.OBJ }
  21.  
  22. Procedure SMALLFONTPROC; External;
  23. {$L LITT.OBJ }
  24.  
  25. End.
  26. 
  27.  
  28.